PHP tester status / notes
Just Did this
Added phptest -init true
to setup testing for your project
- still needs documentation
v0.2
- it works...
Next
- prompt for configuration
- Write default config file if not found
- Cache map of files to test & add
phptest scan
to re-scan (orphptest --scan
to enable scanning) - Document all config options, input options, default configs, & default inputs
- Assertions extensibility so its easy for any package to add its own assertions
Latest
- add handling for
testDirs
config so only php files in the configured test dirs are automaticallyinclude
d - add
set_error_handler
config. setfalse
to disable tester's built in handler. - set
$this->options
BEFORE calling$this->prepare()
- add
dir.require
config which accepts an array & willrequire_once
each.php
file in the directory (NOT recursive) - Print newlines as literal
\n
in array output - add
file.require
option, which takes an array & automaticallyrequire
s any files in that array (relative to the current working directory) - add
results.writeHtml
config. Setfalse
to disable writing an html results file - Add automatic assertions, where you can just call any existing function & it is treated as an assertion. Except you call it like
$this->array_key_exists(...)
to usearray_key_exists(...)
as an assertion. -
phptest -test TestName
now ONLY runs the named test. You might be able to specify multiple-test
s... but I haven't tested it. - Create
Assertions
trait to group assertions - fixed bug with a throw/catch not marking test as passed
- Different location for config files allowed
- Improved cli output
- Added
-test TestName
option to cli invocation to display extended output of a single test in cli - Added
Databasing
trait to make some db operations a little easier.